home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / biz / demo / ontheball.lha / OnTheBall / test.rexx < prev   
OS/2 REXX Batch file  |  1993-03-28  |  341b  |  20 lines

  1. /* ARexx script to test mouse program */
  2.  
  3. address 'ontheball'
  4. options results
  5. options prompt 'ontheball>'
  6.  
  7. do forever
  8.  
  9.     parse pull command    /* get a command from the user */
  10.  
  11.     drop rc                    /* clear out previous return code */
  12.  
  13.     drop result                /* clear out previous result */
  14.  
  15.     interpret command        /* execute the command */
  16.  
  17.     say rc result
  18.  
  19. end
  20.